home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_00 / powdemo4.bas < prev    next >
BASIC Source File  |  1995-01-01  |  891b  |  27 lines

  1. $link "pow.pbl"
  2. $include "pow.inc"
  3.  
  4.  
  5. 'POW! Demo number 4 - speech driver interface
  6. '
  7. 'Compile this program to a standalone .EXE, then
  8. 'exit the IDE, load the SBTALKER program (SBTALKER /DBLASTER),
  9. 'and run this program from the DOS command line.  If you have
  10. 'EMS memory, SBTALKER should only take about 14K or so of main
  11. 'DOS memory.  Unload with SBTALKER /U.
  12.  
  13.  
  14. q%=pbvhost
  15. shift right q%,5
  16. if q% and 1 then
  17.     print:print "Please run from a standalone .EXE only."
  18.      end
  19. end if
  20.  
  21. if sbspeech=0 then print:print "SB Speech driver required - please load and rerun this demo.":stop
  22.  
  23. sbsay "Hello there how are you.  This is a test of ess bee speech and ess bee say in the pow toolbox."
  24. sbsay "These roo teens provide you with an inter face to the speech driver, which you are experiencing right now."
  25. sbsay "Hope you enjoy using the pow library for power basic."
  26. stop
  27.